home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / lice / Maketeststargs < prev    next >
Text File  |  1991-09-04  |  1KB  |  50 lines

  1. #
  2. # Copyright (C) 1991 Texas Instruments Incorporated.
  3. #
  4. # Permission is granted to any individual or institution to use, copy, modify,
  5. # and distribute this software, provided that this complete copyright and
  6. # permission notice is maintained, intact, in all copies and supporting
  7. # documentation.
  8. #
  9. # Texas Instruments Incorporated provides this software "as is" without
  10. # express or implied warranty.
  11. #
  12.  
  13. .SUFFIXES: .C .o .out .x
  14.  
  15. .C.o:
  16.     $(CC) $(CCFLAGS) $(DEFINES) $(INCLUDES) $*.C
  17.  
  18. .o.x:
  19.     $(CC) -o$*.x $*.o $(LIBRARYS)
  20.  
  21. .x.out:
  22.     $*.x > $*.out $(ERROR)
  23.  
  24. summary: $(RESULTS)
  25.     @$(ECHO) "======================="
  26.     @for RESULT in $(RESULTS); do $(SEARCH) "Summary" $$RESULT; done
  27.     @$(ECHO) "======================="
  28.  
  29. $(RESULTS): $(PROGRAMS)
  30.  
  31. $(PROGRAMS): $(OBJECTS)
  32.  
  33. all: summary
  34.  
  35. saber_src:
  36.     #load $(CCFLAGS) $(INCLUDES) $(SRCS) $(LIBRARYS) 
  37.  
  38. saber_obj:
  39.     #load $(CCINCLUDES) $(OBJS) $(LIBRARYS)
  40.  
  41. allclean clean:
  42.     - $(RM) $(OBJECTS) $(PROGRAMS) $(RESULTS) $(BACKUPS)
  43.  
  44. alldepend depend: $(SOURCES) $(HEADERS)
  45.     $(MKDEPEND) $(DEFINES) $(INCLUDES) $(SOURCES) $(HEADERS)
  46.  
  47. allinstall install:
  48.  
  49. alllink link:
  50.